tools: babl-gen-test-pixels: add explicit return 0
authorRoman Lebedev <lebedev.ri@gmail.com>
Mon, 22 Aug 2016 12:25:31 +0000 (15:25 +0300)
committerJehan <jehan@girinstud.io>
Fri, 26 Aug 2016 02:44:52 +0000 (04:44 +0200)
Gcc-4.9 warns:
babl-gen-test-pixels.c: In function ‘main’:
babl-gen-test-pixels.c:170:1: error: control reaches end of non-void function [-Werror=return-type]

tools/babl-gen-test-pixels.c

index 0231224989ffdeaf7fa6788d788ca794b557c8a1..54c1b1629b579617cd743084c1ac715a61a63447 100644 (file)
@@ -167,4 +167,6 @@ int main (int argc, char **argv)
   gen_path_pixels ();
   gen_model_pixels ();
   gen_type_pixels ();
-}
\ No newline at end of file
+
+  return 0;
+}